home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
Pakiet multimedia
/
Animacje, filmy i prezentacje
/
Edytory i konwertery filmow
/
MediaCoder 0.5.1 pre12
/
MediaCoder-0.5.1-pre12.exe
/
htdocs
/
pref
/
main.js
< prev
next >
Wrap
Text File
|
2006-06-19
|
463b
|
26 lines
function onPageLoad()
{
window.resizeTo(800, 600);
}
function GetToken(str, token, delimiter)
{
var idx = str.indexOf(token + '=');
var argstr = str.substring(idx + token.length + 1);
idx = argstr.indexOf(delimiter);
return idx >=0 ? argstr.substring(0, idx) : argstr;
}
function onButtonClick(index)
{
switch (index) {
case 0:
alert("hello");
window.location = "page2.htm";
break;
case 1:
alert("world");
break;
}
}